Release 10.1A: OpenEdge Data Management:
SQL Reference


Conventional identifiers

Conventional SQL identifiers must:

SQL does not distinguish between uppercase and lowercase letters in SQL identifiers. It converts all names specified as conventional identifiers to uppercase, but statements can refer to the names in mixed case.

Example

The following example illustrates the use of identifiers in a simple query statement where CustNum, Order, and OrderDate are the user-specified names of columns:

SELECT CustNum, COUNT(*) 
     FROM Order 
     WHERE OrderDate < TO_DATE ('3/31/2004') 
     GROUP BY CustNum 
     HAVING COUNT (*) > 10 ; 


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095